@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#App {
  display: none;
}

.Skillbar-Container {
  width: 15%;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: rgba(30, 31, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.Skillbar-Container .Skillbar-Label {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-size: 14px;
}

.Skillbar-Container .Skillbar-Bar {
  position: fixed;
  z-index: 0;
  height: 100%;
  background: rgba(181, 38, 33, 0.7);
}

.Skillbar-Container .Skillbar-Line {
  position: fixed;
  z-index: 500;
  width: 13%;
  height: 100%;
  left: 80%;
  background: rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
/*# sourceMappingURL=Main.css.map */